home *** CD-ROM | disk | FTP | other *** search
/ PC User 2003 December / Australian PC User - December 2003 (CD2).iso / software / apps / files / dwmx2k4.exe / Disk1 / data1.cab / Configuration_En / Validators / integer.as next >
Encoding:
Text File  |  2003-09-05  |  114 b   |  5 lines

  1. mx.Validators.integer = function(data)
  2. {
  3.     return mx.Validators.decimal(data) && (Math.round(data) == data);
  4. }
  5.